home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / EmacsTeX / Emacs-3.0.1 / Source / PrefControl.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  601 b   |  31 lines

  1. /* The PrefControl interface for Emacs.
  2.  
  3.    For legal stuff see the file COPYRIGHT.  */
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. @interface PrefControl: Object
  8. {
  9.   id autoLaunchSwitch;
  10.   id defaultAppSwitch;
  11.   id spaceSlider;
  12.   id emacsPathField;
  13.   id lispPathField;
  14.   id openPanel;
  15. }
  16.  
  17. -windowDidBecomeKey: sender;
  18. -autoLaunch: sender;
  19. -defaultApp: sender;
  20. -spaceChanged: sender;
  21. -emacsPathChanged: sender;
  22. -lispPathChanged: sender;
  23. -selectEmacsPath: sender;
  24. -selectLispPath: sender;
  25. -defaultEmacsPath: sender;
  26. -defaultLispPath: sender;
  27. -setEmacsPath: (const char *) path;
  28. -setLispPath: (const char *) path;
  29.  
  30. @end
  31.